home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_polarmosaic.ifx.pre < prev    next >
Text File  |  2004-08-03  |  722b  |  37 lines

  1. /*
  2.  * EOT_PolarMosaic.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Animated Polar Mosaic Effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_PolarMosaic_'
  19.  
  20. start = GETCLIP(base||'Start')
  21. end   = GETCLIP(base||'End')
  22.  
  23. IF start = "" THEN start = 4
  24. IF end   = "" THEN end = 50
  25.  
  26. Gadget.1 = 'INTEGER 150  5 50 14 "Starting Amount:"' start
  27. Gadget.2 = 'INTEGER 150 20 50 14 "Ending Amount:"' end
  28. Gadget.3 = 'END'
  29.  
  30. NewComplexRequest '"Polar Mosaic"' Gadget 250 50
  31. IF rc ~= 0 THEN EXIT rc
  32.  
  33. CALL SETCLIP(base||'Start', result.1)
  34. CALL SETCLIP(base||'End', result.2)
  35.  
  36. EXIT
  37.